home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Blitz Basic 2.1 / Ultimate Blitz Basic 2.1 (1997)(Acid Software).iso / bui6 / blitzbank / installenglish < prev    next >
Text File  |  1997-10-06  |  1KB  |  70 lines

  1.  
  2. (welcome)
  3.  
  4. (set PROGNAME "BlitzBank")
  5.  
  6. (set path
  7.    (askdir
  8.       (prompt ("In which Directory Would you like to install %s ?" PROGNAME) )
  9.       (help
  10.          "all files will be copied directly to this directory."
  11.       )
  12.       (default "dh1:")
  13.    )
  14. )
  15.  
  16. ; Install main program files
  17.  
  18. (set path.source (pathonly @icon) )
  19.  
  20. (copyfiles
  21.    (prompt ("Copying Files To %s" path))
  22.    (help   "")
  23.    (choices
  24.    "datas"
  25.    "Doc"
  26.    "Doc.info"
  27.    "BlitzBank"
  28.    "BlitzBank.prefs"
  29.    "BlitzBank.im"
  30.    "BlitzBank.info"
  31.    "BlitzBank.tap"
  32.    "Exemple.cpt"
  33.    "Exemple.cpt.info")
  34.    (source path.source)
  35.    (dest path)
  36. )
  37.  
  38. (complete 80)
  39.  
  40. (copyfiles
  41.    (prompt "Copying Fonts")
  42.    (help ""
  43.    )
  44.    (choices "BlitzBank" "BlitzBank.font" )
  45.    (source "fonts/")
  46.    (dest "FONTS:")
  47.    (infos)
  48.    (optional nofail)
  49. )
  50.  
  51. (complete 90)
  52.  
  53. (startup
  54.    PROGNAME
  55.    (prompt "I am going to update your User-Startup..."
  56.  
  57.    )
  58.    (help
  59.       "Select PROCEED to have the Assign command in your User-Startup."
  60.    )
  61.    (command ("assign blitzbank: %s" path))
  62. )
  63.  
  64. (complete 100)
  65.  
  66. (exit
  67.    "Now, reboot your Amiga and double click on BlitzBank... "
  68.    ("in the directory %s" path)
  69. )
  70.